.swiper {
  position: relative;
  width: 600px;
  height: 370px;
}
.swiper .covers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper .covers li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 2s;
}
.swiper .covers li img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper .covers li.current {
  z-index: 9;
  opacity: 1;
  transition: all 2s;
}
.swiper .desc {
  position: absolute;
  z-index: 9;
  bottom: 3px;
  width: 100%;
  height: 54px;
  line-height: 54px;
  background-color: rgba(0, 0, 0, 0.65);
}
.swiper .desc .titles li {
  font-size: 16px;
  color: #FFF;
  text-indent: 1em;
  display: none;
}
.swiper .desc .titles li a {
  font-size: inherit;
  color: inherit;
}
.swiper .desc .titles li.current {
  display: block;
}
.swiper .desc .count {
  position: absolute;
  top: 0;
  right: 1em;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  color: #FFF;
}
.swiper .flags {
  position: absolute;
  z-index: 99;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #E2B8B8;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.swiper .flags li {
  opacity: 0;
  height: 3px;
  background-color: #B80000;
  transition: all 2s;
}
.swiper .flags li.current {
  opacity: 1;
  height: 3px;
  background-color: #B80000;
  transition: all 2s;
}
.swiper .prev, .swiper .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.swiper .prev {
  left: 0;
}
.swiper .next {
  right: 0;
}